projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
859e865
)
python.el: Fix typo in eldoc initialization for Emacs 24.x
author
Fabián Ezequiel Gallina
<fgallina@gnu.org>
Tue, 10 Feb 2015 02:53:11 +0000
(23:53 -0300)
committer
Fabián Ezequiel Gallina
<fgallina@gnu.org>
Tue, 10 Feb 2015 02:53:11 +0000
(23:53 -0300)
lisp/progmodes/python.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/python.el
b/lisp/progmodes/python.el
index 1889affbf6f66d2a3a6368ea4e6fe21ec752fbef..be747d008dd1e144419038df4adf0131c05127ae 100644
(file)
--- a/
lisp/progmodes/python.el
+++ b/
lisp/progmodes/python.el
@@
-4709,8
+4709,8
@@
returned as is."
(if (null eldoc-documentation-function)
;; Emacs<25
- (set
q
(make-local-variable 'eldoc-documentation-function)
-
#'python-eldoc-function)
+ (set (make-local-variable 'eldoc-documentation-function)
+ #'python-eldoc-function)
(add-function :before-until (local 'eldoc-documentation-function)
#'python-eldoc-function))